home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
database
/
do1beta
/
lines.do
< prev
next >
Wrap
Text File
|
1991-07-18
|
529b
|
20 lines
/*
demo of the BGI line drawing methods
*/
#include "bgidef.do"
initGraph(DETECT,0,envSymbol("bgipath"));
outTextXY(200,50,"BGI Line Drawing Demonstration");
line(100,100,100,300); % draw a line
setLineStyle(1,0,0);
line(150,100,150,300); % dotted line
setLineStyle(2,0,0);
line(200,100,200,300); % centered line
setLineStyle(3,0,0);
line(250,100,250,300); % dashed line
setLineStyle(4,$0F0F,3);
line(300,100,300,300); % user defined
outTextXY(20,450,"Press any key to continue...");
inkey();
closeGraph();